https://cypress.io logo
cy.go('back') shows the session results in non-Chr...
# i-need-help
s
Hi team, Using the latest version of Cypress, I am trying to use
cy.go('forward')
then
cy.go('back')
on my tests to check if it still shows the last state of the page. However, it seems no data is displayed in the table after doing the commands using Chrome and Edge. Works fine in Electron and Firefox. ![Before cy.go in Firefox](Before cy.go in Firefox.png) - shows 1 record ![After cy.go in Firefox](After cy.go in Firefox.png) - still shows 1 record === ![Before cy.go in Chrome](Before cy.go in Chrome.png) - shows 1 record ![After cy.go in Chrome](After cy.go in Chrome.png) - shows nothing I trie to disable as much as I can on my
plugin/index.ts
file with the following to no avail:
Copy code
typescript
        if (browser.name === 'chrome' || browser.name === 'edge') {
            launchOptions.args.push('--disable-features=SameSiteByDefaultCookies,CrossSiteDocumentBlockingIfIsolating,CrossSiteDocumentBlockingAlways,IsolateOrigins,site-per-process');
            return launchOptions;
        }